home *** CD-ROM | disk | FTP | other *** search
/ Club KidSoft Volume 3 #2 / CKSPCV32.BIN / movies / clubroom.dir / 00046_Script_Contest Win Button < prev    next >
Text File  |  1995-04-03  |  504b  |  23 lines

  1. on mouseDown
  2.   global gSButton
  3.   
  4.   set myCast = the castNum of sprite gSButton
  5.   set the castNum of  sprite gSButton to myCast + 1
  6.   updateStage
  7. end
  8.  
  9. on mouseUp
  10.   global gCurrentButton, gSButton
  11.   
  12.   set gCurrentButton = 0
  13.   set the visible of sprite gSButton = false
  14.   set the puppet of sprite gSButton = false
  15.   StopSound
  16.   updateStage
  17.   
  18.   global qtMovieWatcher
  19.   
  20.   QTMovieStart qtMovieWatcher, the number of cast  "WINCONT.MOV", 1, marker(0)
  21.   
  22.   go to frame marker(0) + 1
  23. end